:root {
    --primary-light: #dbedf3;
    --primary-red: #f73859;
    --primary-dark: #404b69;
    --primary-darker: #283149;
}

body {
    background-color: #f5f5f5;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: var(--primary-darker);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 181px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--primary-darker);
    font-weight: bold;
    font-size: 18px;
}

.banner-placeholder {
    flex: 1;
    height: 100px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-placeholder img {
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
}

.stock-profile {
    background: linear-gradient(to left, rgba(40,49,73,0.9), rgba(64,75,105,0.7)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23283149"/><g fill="%23404b69"><rect x="10" y="88" width="2" height="12" rx="1"/><rect x="20" y="83" width="2" height="17" rx="1"/><rect x="30" y="78" width="2" height="22" rx="1"/><rect x="40" y="73" width="2" height="27" rx="1"/><rect x="50" y="68" width="2" height="32" rx="1"/><rect x="60" y="63" width="2" height="37" rx="1"/><rect x="70" y="58" width="2" height="42" rx="1"/><rect x="80" y="53" width="2" height="47" rx="1"/></g></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    color: white;
    padding: 25px 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.profile-info {
    padding: 15px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    margin: 5px;
}

.profile-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.profile-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 5px;
}

.profile-value,
.profile-value a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.nav-container {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    border-radius: 0 0 4px 4px;
}

.nav-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
    scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar { 
    display: none;
}

.nav-item {
    padding: 15px 25px;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-item a {
    color: #fff;
    font-weight: bold;
}

.nav-item:hover {
    background-color: rgba(219,237,243,0.15);
}

.nav-item.active {
    background-color: #1e9fff;
    font-weight: bold;
}

.search-container {
    padding: 20px 0;
}

.search-box {
    display: flex;
    margin: 0 auto;
    max-width: 800px;
}

.search-input {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: 2px solid var(--primary-dark);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-btn {
    background-color: #1e9fff;
    color: white;
    border: none;
    width: 100px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.search-btn:hover {
    background-color: #d0324e;
}

.location-bar {
    padding: 12px 0;
    color: var(--primary-dark);
    font-size: 15px;
    border-bottom: 1px dashed #ddd;
}

.content-section {
    padding: 30px 0;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
}

.card-header {
    background-color: var(--primary-dark);
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
}
.card-header a{
    color: white;
}

.card-body {
    padding: 20px;
}
.price-up {
            color: #ef5350;
        }
        .price-down {
            color: #26a69a;
        }
.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stock-info-box {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.stock-info-box:hover {
    box-shadow: 0 3px 10px rgba(64,75,105,0.1);
    border-color: var(--primary-light);
}

.info-label {
    color: #777;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-value {
    color: var(--primary-darker);
    font-size: 17px;
    font-weight: 500;
}

.fund-table {
    width: 100%;
    border-collapse: collapse;
}

.fund-table th {
    background-color: var(--primary-light);
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: var(--primary-darker);
}

.fund-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.fund-table tr:hover td {
    background-color: rgba(219,237,243,0.2);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-btn {
    padding: 8px;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.custom-btn:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--primary-darker);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
    margin-top: 50px;
    max-width: 100%;
    margin: 0 auto;
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 5px;
    padding: 2px 5px;
    border-bottom: 1px dotted rgba(219,237,243,0.4);
}

.footer a:hover {
    color: white;
    background-color: rgba(219,237,243,0.2);
    border-bottom-style: solid;
    text-decoration: none;
}

.footer a:visited {
    color: #a1c7d8;
}
#tv-attr-logo {
            display: none !important;
        }
.copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    line-height: 1.7;
}
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
.link-description {
    display: block;
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.7;
}

.list-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 40px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.table-title {
    color: #283149;
    font-size: 20px;
    margin: 0;
}

.table-toolbar {
    display: flex;
    align-items: center;
}

.item-count {
    font-size: 15px;
    margin-right: 20px;
}

.item-count strong {
    color: #f73859;
}



.enterprise-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    table-layout: auto;
}

.col-company { min-width: 120px; }
.col-code { min-width: 110px; }
.col-industry { min-width: 100px; }
.col-region { min-width: 90px; }
.col-type { min-width: 100px; }
.col-date { min-width: 100px; }

.enterprise-table th {
    background-color: #283149;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
    position: sticky;
    top: 0;
    white-space: nowrap;
}

.enterprise-table th:first-child {
    border-radius: 6px 0 0 0;
}

.enterprise-table th:last-child {
    border-radius: 0 6px 0 0;
}

.enterprise-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.enterprise-table tr:nth-child(even) {
    background-color: #fafafa;
}

.enterprise-table tr:hover {
    background-color: rgba(219, 237, 243, 0.4);
}

.enterprise-table tr:last-child td {
    border-bottom: none;
}

.enterprise-table a {
    text-decoration: none;
    font-weight: 900;
}

.enterprise-table a:hover {
    text-decoration: underline;
}

.pagination {
    margin: 25px;
    text-align: center;
    font-size: 0;
}

.pagination a, .pagination span {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
    margin: 4px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a {
    color: #283149;
    text-decoration: none;
    background-color: #f1f4f8;
    border: 1px solid #dde2e8;
}

.pagination a.page-prev, 
.pagination a.page-next {
    min-width: auto;
    padding: 0 12px;
}

.pagination a:hover {
    background-color: #dbedf3;
    border-color: #c0d1de;
    color: #283149;
}

.pagination a.active {
    background-color: #f73859;
    border-color: #f73859;
    color: white;
    font-weight: 500;
}

.pagination a.disabled {
    color: #a0aec0;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.pagination a.disabled:hover {
    background-color: #f8f9fa;
    border-color: #dde2e8;
}

.page-ellipsis {
    color: #718096;
}

.company-intro p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #404b69;
    font-size: 17px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-member {
    text-align: center;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #dbedf3;
    border-radius: 50%;
    position: relative;
}

.member-avatar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #404b69, #283149);
    opacity: 0.7;
    border-radius: 50%;
}

.member-name {
    font-weight: bold;
    font-size: 18px;
    color: #283149;
    margin-bottom: 5px;
}

.member-position {
    color: #f73859;
    font-size: 14px;
    margin-bottom: 8px;
}

.member-brief {
    color: #666;
    font-size: 13px;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.research-stat {
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #dbedf3;
    border-radius: 6px;
    background-color: rgba(219,237,243,0.3);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #283149;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.achievement-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.achievement-list li {
    padding: 10px 0 10px 25px;
    border-bottom: 1px dashed #eee;
    position: relative;
}

.achievement-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 12px;
    height: 12px;
    background-color: #f73859;
    border-radius: 50%;
}

.article-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.article-header {
    padding: 30px 40px 20px;
    background: linear-gradient(135deg, #404b69, #283149);
    color: white;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
    flex-direction: row;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #8fc2f1;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tag:hover {

    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(247, 56, 89, 0.3);
        color: #fff;
}

.tag::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;

    transition: width 0.3s ease;
}

.tag:hover::after {
    width: 100%;
}

.article-body {
    padding: 30px 40px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.markdown-body h2 {
    color: #283149;
    font-size: 24px;
    margin-top: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.markdown-body h3 {
    color: #404b69;
    font-size: 20px;
    margin-top: 25px;
}

.markdown-body p {
    margin: 15px 0;
}

.markdown-body ul, 
.markdown-body ol {
    padding-left: 30px;
    margin: 15px 0;
}

.markdown-body li {
    margin-bottom: 8px;
}

.markdown-body blockquote {
    border-left: 4px solid #f73859;
    background-color: #f9f9f9;
    padding: 12px 20px;
    margin: 20px 0;
    color: #555;
}

.markdown-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.markdown-body th {
    background-color: #283149;
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.markdown-body td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.markdown-body tr:nth-child(even) {
    background-color: #fafafa;
}

.markdown-body pre {
    background-color: #283149;
    color: #dbedf3;
    padding: 15px;
    border-radius: 6px;
    overflow: auto;
    margin: 20px 0;
}

.markdown-body code {
    padding: 2px 6px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
}

.highlight {
    color: #f73859;
    font-weight: bold;
}

.stock-code {
    background-color: #f1f4f8;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.info-box {
    background-color: #f1f9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #4b8df8;
}

.info-title {
    font-weight: bold;
    color: #283149;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box.warning {
    background-color: #fff8f0;
    border-left-color: #ff9500;
}

.quote-box {
    background-color: #f9f9f9;
    border-left: 3px solid #f73859;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}

.quote-author {
    text-align: right;
    margin-top: 10px;
    color: #666;
    font-style: normal;
}

.chart-placeholder {
    height: 300px;
    background: linear-gradient(45deg, #f1f4f8 25%, #ffffff 0, #ffffff 50%, #f1f4f8 0, #f1f4f8 75%, #ffffff 0);
    background-size: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px dashed #ccc;
}

.chart-desc {
    color: #718096;
    font-style: italic;
}

.article-footer {
    padding: 20px 40px;
    border-top: 1px solid #eee;
}

.source-info {
    color: #718096;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.article-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
}

.action-btn {
    background-color: white;
    border: 1px solid #dde2e8;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: #404b69;
    font-size: 15px;
}

.action-btn:hover {
    background-color: #dbedf3;
    transform: translateY(-2px);
}

.like-btn:hover {
    color: #f73859;
    border-color: rgba(247, 56, 89, 0.3);
}

.favorite-btn:hover {
    color: #ff9500;
    border-color: rgba(255, 149, 0, 0.3);
}

.share-btn:hover {
    color: #4b8df8;
    border-color: rgba(75, 141, 248, 0.3);
}

.related-articles {
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.related-item {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #eaeef4;
}

.related-item:hover {
    background-color: #f1f9ff;
    border-color: #c0e0ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.related-title {
    font-weight: 500;
    color: #404b69;
    margin-bottom: 5px;
}

.related-meta {
    color: #718096;
    font-size: 14px;
}

.filter-toolbar {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-group label {
    color: #283149;
    font-weight: bold;
    font-size: 15px;
    width: 60px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-option {
    background-color: #f1f4f8;
    color: #404b69;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-option.active,
.filter-option:hover {
    background-color: #404b69;
    color: white;
}

.result-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 5px;
}

.result-count {
    font-size: 16px;
    color: #404b69;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 15px;
    color: #404b69;
}

.sort-options select {
    border: 1px solid #dde2e8;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.article-thumbnail {
    flex-shrink: 0;
    width: 250px;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    flex-grow: 1;
    padding: 25px;
}

.article-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.article-title a {
    color: #283149;
    text-decoration: none;
}

.article-title a:hover {
    color: #f73859;
    text-decoration: underline;
}

.article-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    flex-direction: row;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-section {
    background: linear-gradient(135deg, #283149, #404b69);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f73859;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.section-title {
    font-size: 22px;
    color: #283149;
    margin: 0;
}

.view-all {
    color: #f73859;
    text-decoration: none;
    font-weight: 500;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-header {
    background-color: #283149;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.news-body {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    color: #283149;
    margin: 0 0 10px 0;
}

.news-content {
    color: #666;
    line-height: 1.6;
}

.news-meta {
    color: #999;
    font-size: 14px;
    margin-top: 15px;
}

.market-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.indicator-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.indicator-card:hover {
    border-color: #dbedf3;
    background-color: rgba(219,237,243,0.2);
}

.indicator-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.indicator-value {
    font-size: 24px;
    font-weight: bold;
    color: #283149;
    margin-bottom: 5px;
}

.indicator-change {
    font-size: 16px;
}

.indicator-change.positive {
    color: #f73859;
}

.indicator-change.negative {
    color: #4CAF50;
}

.tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    margin: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    align-items: center;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f4f8;
    color: #283149;
    padding: 5px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.tool-link:hover {
    background-color: #dbedf3;
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .article-header,
    .article-body,
    .article-footer,
    .related-articles {
        padding: 20px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .markdown-body h2 {
        font-size: 22px;
    }
    
    .markdown-body h3 {
        font-size: 19px;
    }
    
    .article-body {
        padding: 20px 15px;
    }
    
    .markdown-body table {
        font-size: 14px;
    }
    
    .markdown-body th,
    .markdown-body td {
        padding: 8px 10px;
    }
    
    .result-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .sort-options {
        justify-content: flex-end;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .news-container:after {
        content: "← 可左右滑动查看全部 →";
        display: block;
        text-align: center;
        color: #718096;
        font-size: 12px;
        padding: 5px 0;
        font-style: italic;
    }
    
    .list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-toolbar {
        margin-top: 10px;
        justify-content: space-between;
        width: 100%;
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        max-height: 180px;
    }
    
    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination li {
        margin-bottom: 5px;
    }
    
    .col-company { min-width: 100px; }
    .col-code { min-width: 90px; }
    .col-industry { min-width: 80px; }
    .col-region { min-width: 70px; }
    .col-type { min-width: 80px; }
    .col-date { min-width: 80px; }
    
    .enterprise-table th, 
    .enterprise-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .list-section {
        padding: 15px;
    }
    
    .enterprise-table {
        width: 100%;
        min-width: auto;
    }
    
    .enterprise-table thead {
        display: none;
    }
    
    .enterprise-table tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        background: white;
        overflow: hidden;
    }
    
    .enterprise-table td {
        display: block;
        border-bottom: 1px solid #f1f1f1;
        padding: 10px 15px;
    }
    
    .enterprise-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-right: 10px;
        color: #283149;
    }
    
    .enterprise-table tr:last-child td {
        border-bottom: none;
    }
    
    .table-container:after {
        display: none;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 12px;
    }
}


